home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_gen_indyinvisible.cog < prev    next >
Text File  |  1999-11-15  |  470b  |  22 lines

  1. # Jones 3D Cog Script
  2. #
  3. # Make Indy disappear (for screenshots)
  4. #
  5. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  6. # ========================================================================================
  7.  
  8. symbols
  9. message    startup    
  10. thing        player    nolink
  11. end
  12.  
  13. code
  14. # ........................................................................................
  15.  
  16. startup:
  17.     player = GetLocalPlayerThing();
  18.     SetThingFlags(player, 16);
  19.     return;
  20.  
  21. end
  22.